home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFILE / PhoneControl OOFILE sample / Source / CImporting.h < prev    next >
Text File  |  1995-12-13  |  1KB  |  46 lines

  1. // CImporting.h -- dialog class
  2. // Created 01/01/95 12:01 PM by AppMaker
  3.  
  4. #pragma once
  5.  
  6. #include <LDialogBox.h>
  7. #define cmd_Importing        'Impg'
  8. #define    rPPob_Importing 202
  9.  
  10. class    LStream;
  11.  
  12.  
  13.  
  14. //----------
  15. class    CImporting :    public LDialogBox {
  16. public:    // these comprise the programming interface for using the dialog
  17. static    CImporting*        CreateImporting        (LCommander        *inSuperCommander);
  18.  
  19.  
  20. public:    // these comprise the implementation
  21.     static    CImporting*    CreateImportingStream    (LStream    *inStream);
  22.  
  23.                         CImporting();
  24.                         CImporting        (LStream    *inStream);
  25.     virtual                ~CImporting();
  26.  
  27.  
  28.     virtual void        ListenToMessage        (MessageT    inMessage,
  29.                                              void        *ioParam);
  30.  
  31.     virtual Boolean        ObeyCommand            (CommandT    inCommand,
  32.                                              void        *ioParam = nil);
  33.     virtual void        FindCommandStatus    (CommandT    inCommand,
  34.                                              Boolean    &outEnabled,
  35.                                              Boolean    &outUsesMark,
  36.                                              Char16        &outMark,
  37.                                              Str255        outName);
  38.     virtual Boolean        FocusDraw();
  39.  
  40. protected:
  41.     virtual void        FinishCreateSelf();
  42.  
  43.     protected:
  44.  
  45.     };
  46.